home *** CD-ROM | disk | FTP | other *** search
/ Learn Microsoft Visual Basic 6.0 Now / Learn Microsoft Visual Basic 6.0 Now (Microsoft Press)(X03-58607)(1998).ISO / media / chap11 / b11v005.cc2 < prev   
Text File  |  1998-06-07  |  3KB  |  63 lines

  1. 0, Imagine writing a text editor program 
  2. 2, with Visual Basic that provides standard 
  3. 4, word processing features such as spell 
  4. 6, checking and grammar analysis. What 
  5. 8, dictionary would you use to check the spelling 
  6. 10, of each word, and how would you write 
  7. 12, the program code that analyzed the 
  8. 13, grammatical structure of a sentence or 
  9. 15, paragraph? While writing a spelling checker may 
  10. 17, seem like a daunting task, you're not 
  11. 19, required to solve such a detailed problem 
  12. 21, on your own. Visual Basic includes a 
  13. 23, technology called Automation, which allows 
  14. 26, you to use the advanced features of 
  15. 27, another application in your Visual Basic 
  16. 29, program. The only requirement is that the 
  17. 31, application you use be designed to 
  18. 33, support Automation and that you have a copy of 
  19. 36, the program on your system. If you're 
  20. 38, currently using Microsoft Office, you're 
  21. 40, ready to get started now. Each component 
  22. 42, of the Microsoft Office 97 software 
  23. 44, suite fully supports Automation from Visual 
  24. 47, Basic. The communication between Visual 
  25. 49, Basic and a Microsoft Office 
  26. 50, application is easily demonstrated with an example 
  27. 53, from the kitchen. Imagine that you want 
  28. 55, to cook a pasta dinner for friends but 
  29. 57, that you're running short on time. If 
  30. 59, you're feeling motivated, you might run 
  31. 61, out and buy a pasta maker and assemble the 
  32. 63, necessary ingredients to create the 
  33. 64, pasta from scratch. After all, your friends 
  34. 67, are worth it aren't they? Now let's 
  35. 69, see, how do I get this eggplant into the 
  36. 71, pasta? If this meal were a Visual Basic 
  37. 75, program, we could use Automation and a 
  38. 77, Microsoft Office application to save us 
  39. 80, some serious work. Rather than make pasta 
  40. 82, from scratch, I could use Automation to 
  41. 84, send my personal pasta shopper out to get 
  42. 86, the best home-made pasta in town, and 
  43. 88, if I own Office, it won't even cost me 
  44. 90, anything! "Hello,Mike." "Hello." "Here's 
  45. 93, your eggplant tortellini." "Thank you 
  46. 95, very much." "You're welcome." "How much do 
  47. 96, I owe you?" "My compliments.""Thank 
  48. 98, you." In conclusion, I can prepare a meal 
  49. 101, much more quickly, and probably with 
  50. 103, better results, if I use Automation to do the 
  51. 106, work. In fact, I can use any number of 
  52. 109, Automation objects to make my life 
  53. 110, easier.To continue the analogy, I can use 
  54. 113, Office application objects to supply the 
  55. 115, pasta, the bread, and the salad while I 
  56. 119, concentrate on the setting the table and 
  57. 121, opening the wine. In the next part of 
  58. 123, this chapter, you'll learn how to use the 
  59. 125, Visual Basic Object Browser as your 
  60. 126, personal take-out menu for the Office 
  61. 128, application objects in your system. Simply 
  62. 131, place your order and put Automation to work!
  63. 134, END